net/http.http2ClientConn.goAway (field)

12 uses

	net/http (current package)
		h2_bundle.go#L7498: 	goAway          *http2GoAwayFrame             // if non-nil, the GoAwayFrame we received
		h2_bundle.go#L8037: 	old := cc.goAway
		h2_bundle.go#L8038: 	cc.goAway = f
		h2_bundle.go#L8045: 		cc.goAway.ErrCode = old.ErrCode
		h2_bundle.go#L8055: 		if streamID == 1 && cc.goAway.ErrCode != http2ErrCodeNo {
		h2_bundle.go#L8059: 			cs.abortStreamLocked(fmt.Errorf("http2: Transport received GOAWAY from server ErrCode:%v", cc.goAway.ErrCode))
		h2_bundle.go#L8138: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		h2_bundle.go#L8174: 	st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay &&
		h2_bundle.go#L9369: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		h2_bundle.go#L9436: 	if cc.goAway != nil && http2isEOFOrNetReadError(err) {
		h2_bundle.go#L9438: 			LastStreamID: cc.goAway.LastStreamID,
		h2_bundle.go#L9439: 			ErrCode:      cc.goAway.ErrCode,